|
|
@@ -23,13 +23,13 @@
|
|
|
</u-cell>
|
|
|
<u-cell title="预计售后时长" arrow-direction="down">
|
|
|
<view slot="value" style="display: flex;align-items: center;width: 100%;">
|
|
|
- <u--input style="flex:1" readonly border="surround" v-model="form.duration">
|
|
|
- <template #suffix>
|
|
|
+ <u-input style="flex:1" readonly border="surround" v-model="form.duration">
|
|
|
+ <template slot='suffix'>
|
|
|
<uni-data-picker class="time_select" readonly v-model="form.durationUnit" slot="value"
|
|
|
placeholder="请选择" :localdata="durationList">
|
|
|
</uni-data-picker>
|
|
|
</template>
|
|
|
- </u--input>
|
|
|
+ </u-input>
|
|
|
</view>
|
|
|
</u-cell>
|
|
|
<u-cell title="部门" arrow-direction="down">
|
|
|
@@ -44,11 +44,11 @@
|
|
|
</u--input>
|
|
|
</view>
|
|
|
</u-cell>
|
|
|
- <u-cell title="紧急程度" arrow-direction="down">
|
|
|
- <view slot="value" style="display: flex;align-items: center;width: 100%;">
|
|
|
- <u--input style="flex:1" readonly placeholder="请选择" border="surround" v-model="form.urgent">
|
|
|
- </u--input>
|
|
|
- </view>
|
|
|
+ <u-cell title="紧急程度" arrow-direction="down">
|
|
|
+ <view slot="value" style="display: flex;align-items: center;width: 100%;">
|
|
|
+ <u--input style="flex:1" readonly placeholder="请选择" border="surround" v-model="form.urgent">
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
<!-- <uni-data-picker v-model="form.urgent" slot="value" placeholder="请选择"
|
|
|
:localdata="urgentList" @change="urgentOnchange">
|
|
|
</uni-data-picker> -->
|
|
|
@@ -70,18 +70,18 @@
|
|
|
default: () => {}
|
|
|
}
|
|
|
},
|
|
|
- watch:{
|
|
|
- planForm:{
|
|
|
- handler(val){
|
|
|
+ watch: {
|
|
|
+ planForm: {
|
|
|
+ handler(val) {
|
|
|
this.form = val;
|
|
|
},
|
|
|
- immediate:true,
|
|
|
- deep:true,
|
|
|
+ immediate: true,
|
|
|
+ deep: true,
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- form:{},
|
|
|
+ form: {},
|
|
|
durationList: [{
|
|
|
value: '1',
|
|
|
text: '分钟'
|