shish 2 лет назад
Родитель
Сommit
06808da76b

+ 2 - 2
ghs/src/views/in/add.vue

@@ -17,8 +17,8 @@
 			</template>
 
 			<template #table-column-location="{scope}">
-				<span v-if="scope.row.location == 1" style="cursor: pointer;" @click="modifyLocation(scope.row)">本地</span>
-				<span v-else style="color:blue;font-weight:bold;cursor: pointer;" @click="modifyLocation(scope.row)">上游</span>
+				<span v-if="scope.row.location == 1" style="cursor: pointer;color:blue;font-weight:bold;" @click="modifyLocation(scope.row)">本地</span>
+				<span v-else style="cursor: pointer;" @click="modifyLocation(scope.row)">上游</span>
 			</template>
 
 			<template #table-column-buyAmount="{scope}">

+ 2 - 2
ghs/src/views/in/ghs.vue

@@ -13,8 +13,8 @@
 			</template>
 
 			<template #table-column-location="{scope}">
-				<span v-if="scope.row.location == 1" style="cursor: pointer;" @click="modifyLocation(scope.row)">本地</span>
-				<span v-else style="color:blue;font-weight:bold;cursor: pointer;" @click="modifyLocation(scope.row)">上游</span>
+				<span v-if="scope.row.location == 1" style="cursor: pointer;color:blue;font-weight:bold;" @click="modifyLocation(scope.row)">本地</span>
+				<span v-else style="cursor: pointer;" @click="modifyLocation(scope.row)">上游</span>
 			</template>
 
 			<template #table-column-avatar="{scope}">

+ 1 - 1
ghsApp/src/pages.json

@@ -360,7 +360,7 @@
 				{ "path": "wcOrder", "style": { "navigationBarTitleText": "外采", "enablePullDownRefresh": true } },
        			{ "path": "supplier", "style": { "navigationBarTitleText": "供货商", "enablePullDownRefresh": true } },
 				{ "path": "jdSupplier", "style": { "navigationBarTitleText": "供货商", "enablePullDownRefresh": true } },
-				{ "path": "localSupplier", "style": { "navigationBarTitleText": "附近供货商", "enablePullDownRefresh": true } },
+				{ "path": "localSupplier", "style": { "navigationBarTitleText": "本地供货商", "enablePullDownRefresh": true } },
         		{ "path": "suppAdd", "style": { "navigationBarTitleText": "添加供货商", "enablePullDownRefresh": true } },
 				{ "path": "info", "style": { "navigationBarTitleText": "订单详情", "enablePullDownRefresh": true } },
 				{ "path": "refundList", "style": { "navigationBarTitleText": "记录", "enablePullDownRefresh": true } },

+ 2 - 2
ghsApp/src/pagesPurchase/suppAdd.vue

@@ -17,11 +17,11 @@
               </label>
               <label class="list" for="localLink">
                 <radio id="localLink" value="1" :checked="form.location == 1" style="transform:scale(0.7,0.7)" />
-                <span class="checkbox-text">附近</span>
+                <span class="checkbox-text">本地</span>
               </label>
             </radio-group>
           </tui-list-cell>
-          <view style="margin-top:20upx;padding:0 30upx 0 30upx;">选附近,录采购单,没有打包费、运费填写入口。</view>
+          <view style="margin-top:20upx;padding:0 30upx 0 30upx;">选本地,录采购单,没有打包费、运费填写入口。</view>
 
           <view style="margin-top:50upx;padding-left:50upx;font-size:38upx;margin-bottom:90upx;" v-if="!$util.isEmpty(supplierList)">
             <view v-for="(item, index) in supplierList" :key="index" @click="goToCg(item)" style="margin-bottom:30upx;">{{ item.name }}</view>

+ 2 - 2
ghsApp/src/pagesPurchase/supplier.vue

@@ -19,7 +19,7 @@
         <block v-if="!$util.isEmpty(list.data)">
           <view class="list_item" v-for="(item, index) in list.data" :key="index">
 
-            <view @click.stop="changeLocation(item)" v-if="item.location == 1" style="width:90upx;padding:5upx 0 5upx 0;font-size:20upx;background-color:#7babc1;color:white;position:absolute;left:0;top:0;text-align:center;">附近</view>
+            <view @click.stop="changeLocation(item)" v-if="item.location == 1" style="width:90upx;padding:5upx 0 5upx 0;font-size:20upx;background-color:#7babc1;color:white;position:absolute;left:0;top:0;text-align:center;">本地</view>
             <view @click.stop="changeLocation(item)" v-else style="width:90upx;padding:5upx 0 5upx 0;font-size:20upx;background-color:#DDDDDD;color:white;position:absolute;left:0;top:0;text-align:center;">上游</view>
 
             <view class="store_name">
@@ -98,7 +98,7 @@ export default {
 					value: "0"
 				},
 				{
-					name: "附近",
+					name: "本地",
 					key: "1",
 					value: "0"
 				}